home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 September / Chip_2002-09_cd1.bin / internet / regedit / install / cedt345.exe / template / hello world program.java < prev    next >
Text File  |  2001-10-22  |  172b  |  10 lines

  1. // basic template file for java 
  2.  
  3. import java.io.*;
  4.  
  5. public class HelloWorld {
  6.     public static void main(String[] args) {
  7.         System.out.println("hello world");
  8.     }
  9. }
  10.